home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-05-31 | 604 b | 32 lines | [TEXT/MPS ] |
- Unit Text;
-
- INTERFACE
- USES
- Memtypes,Quickdraw,OSIntf,Toolintf,packintf;
-
- Procedure TextSet(var font,point,StyleNum,mode: Integer);
-
- IMPLEMENTATION
- Procedure TextSet(var font,point,StyleNum,mode: Integer);
-
- begin
- if (font>0) then
- TextFont(font)
- else
- TextFont(0);
- if (point>0) and (point<128) then
- TextSize(point)
- else
- TextSize(12);
- if (mode>7) and (mode<16) then
- mode:=mode-8;
- if (mode>=0) and (mode<8) then
- TextMode(mode)
- else
- TextMode(0);
- if (StyleNum>0) and (StyleNum<128) then
- TextFace(Style(StyleNum))
- else
- TextFace([]);
- end; {procedure}
- END.